home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 4810 / 4810.xpi / chrome / speeddial.jar / content / customSizeDefine.js < prev    next >
Encoding:
Text File  |  2010-01-31  |  1.2 KB  |  32 lines

  1. function Startup() {
  2.   document.getElementById("minimumWidth").value = window.arguments[0];
  3.   document.getElementById("minimumHeight").value = window.arguments[1];
  4.   document.getElementById("maximumWidth").value = window.arguments[2];
  5.   document.getElementById("maximumHeight").value = window.arguments[3];
  6.   document.getElementById("widthModifier").value = window.arguments[4];
  7.   document.getElementById("heightModifier").value = window.arguments[5];
  8.   document.getElementById("widthModifierType").selectedIndex = window.arguments[6];
  9.   document.getElementById("heightModifierType").selectedIndex = window.arguments[7];
  10. }
  11.  
  12. function onOK(event) {
  13.   window.opener.processCustomSizeOutput(
  14.     document.getElementById("minimumWidth").value,
  15.     document.getElementById("minimumHeight").value,
  16.     document.getElementById("maximumWidth").value,
  17.     document.getElementById("maximumHeight").value,
  18.     document.getElementById("widthModifier").value,
  19.     document.getElementById("heightModifier").value,
  20.     document.getElementById("widthModifierType").selectedIndex,
  21.     document.getElementById("heightModifierType").selectedIndex
  22.     );
  23.   return true;
  24. }
  25.  
  26. function onCancel(event) {
  27.   // Do nothing
  28.   
  29.   return true;
  30. }
  31.  
  32.